ad45a9d10bca9b06075211d8e1a0b050f46f1ff0,plugins/maven/src/main/java/org/jetbrains/idea/maven/execution/MavenExecuteGoalDialog.java,MavenExecuteGoalDialog,setUpDialog,#,58

Before Change



  private void setUpDialog() {
    // Configure project combobox
    myGoalsComboBox.setLightWeightPopupEnabled(false);

    EditorComboBoxEditor editor = new StringComboboxEditor(myProject, PlainTextFileType.INSTANCE, myGoalsComboBox);
    myGoalsComboBox.setRenderer(new EditorComboBoxRenderer(editor));

After Change


    }
    else {
      //noinspection SSBasedInspection
      goalsComboBox = new ComboBox(myHistory.toArray(new String[myHistory.size()]), -1);
      goalComponent = goalsComboBox;

      goalsLabel.setLabelFor(goalsComboBox);

      goalsComboBox.setLightWeightPopupEnabled(false);

      EditorComboBoxEditor editor = new StringComboboxEditor(myProject, PlainTextFileType.INSTANCE, goalsComboBox);
      goalsComboBox.setRenderer(new EditorComboBoxRenderer(editor));